Dashboard Temp Share Shortlinks Frames API

HTMLify

style.css
Views: 20 | Author: huxn-webdev
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #4b4b4b;
  font-family: sans-serif;
  perspective: 1000px;
}

.content {
  background-color: #1b1b1b;
  border: 1px solid #1b1b1b;
  position: relative;
  padding-bottom: 5rem;
  transform-origin: center left;
  transition: transform 0.3s ease-in-out;
}

/* JavaScript */
.content.active {
  transform: translateX(200px) rotateY(20deg);
}

.container {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 7rem;
  padding: 5rem;
  background: #292929;
  color: #fff;
}

.container h1 {
  margin-bottom: 5rem;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

form label {
  margin-bottom: 5px;
}

form label .special {
  color: #ffa31a;
}

form input {
  margin-bottom: 2rem;
  outline: none;
  height: 30px;
  padding: 15px;
}

.sidebar {
  background: #808080;
  color: #fff;
  padding: 10px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  transform: translateX(-200px);
  transition: transform 0.3s ease-in-out;
  z-index: 100;
}

/* JavaScript */
.sidebar.active {
  transform: translateX(0);
}

.sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
}

.sidebar ul li a:hover {
  text-decoration: underline;
}

.sidebar .menu .fa-bars {
  display: block;
}

.sidebar .menu .fa-times {
  display: none;
}

/* JavaScript */
.sidebar.active .menu .fa-bars {
  display: none;
}

.sidebar.active .menu .fa-times {
  display: block;
}

.menu {
  background-color: crimson;
  color: #fff;
  border: none;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: -30px;
  height: 30px;
  width: 30px;
  outline: none;
}